Uses of Class
edu.claflin.finder.log.LogLevel
-
Packages that use LogLevel Package Description edu.claflin.finder Subgraph Finder - Used to find and locate subgraphs within a network.edu.claflin.finder.log Contains the classes used by the programming for logging to a file. -
-
Uses of LogLevel in edu.claflin.finder
Methods in edu.claflin.finder with parameters of type LogLevel Modifier and Type Method Description static voidGlobal. makeLogger(LogLevel maxGranularity, boolean[] fileLogs, boolean[] terminalLogs)Instantiates the logger field. -
Uses of LogLevel in edu.claflin.finder.log
Fields in edu.claflin.finder.log declared as LogLevel Modifier and Type Field Description private LogLevelLogUtil. maxGranularityThe maximum granularity of the logging utility.Methods in edu.claflin.finder.log that return LogLevel Modifier and Type Method Description static LogLevelLogLevel. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LogLevel[]LogLevel. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in edu.claflin.finder.log with parameters of type LogLevel Modifier and Type Method Description private voidLogUtil. log(LogType type, LogLevel granularity, java.lang.String detail)Used to log data.voidLogUtil. logAlgo(LogLevel level, java.lang.String detail)Logs an ALGO message.voidLogUtil. logError(LogLevel level, java.lang.String detail)Logs an ERROR message.voidLogUtil. logGraph(LogLevel level, java.lang.String detail)Logs a GRPH message.voidLogUtil. logInfo(LogLevel level, java.lang.String detail)Logs an INFO message.Constructors in edu.claflin.finder.log with parameters of type LogLevel Constructor Description LogUtil(LogLevel maxGranularity, boolean logToTerminal)Constructs the logging utility.LogUtil(LogLevel maxGranularity, boolean[] fileLogs, boolean[] terminalLogs)Constructs the logging utility.
-